Home
{% if current_user.is_authenticated %}
Dashboard
Logout
{% else %}
Login
Register
{% endif %}
Add Debt
{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
{{ form.hidden_tag() }}
Debt Amount:
{{ form.amount(class="form-control", placeholder="Enter debt amount") }}
Debt Description:
{{ form.description(class="form-control", placeholder="Enter a description of the debt") }}
Date Added:
{{ form.date_added(class="form-control stylish-input", placeholder="Select a date") }}
Add Debt
Back to Dashboard